home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / WORDPAD.PAK / OPTIONSH.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  53 lines

  1. // optionsh.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // COptionSheet
  15.  
  16. class COptionSheet : public CCSPropertySheet
  17. {
  18. // Construction
  19. public:
  20.     COptionSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  21.  
  22. // Attributes
  23. public:
  24.     CUnitsPage units;
  25.     CDocOptPage pageText;
  26.     CDocOptPage pageRTF;
  27.     CDocOptPage pageWord;
  28.     CDocOptPage pageWrite;
  29.     CEmbeddedOptPage pageEmbedded;
  30.  
  31. // Operations
  32. public:
  33.     int DoModal();
  34.     void SetPageButtons(CDocOptPage& page, CDockState& ds);
  35.     void SetState(CDocOptPage& page, CDockState& ds);
  36.  
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(COptionSheet)
  40.     //}}AFX_VIRTUAL
  41.  
  42. // Implementation
  43. public:
  44.  
  45.     // Generated message map functions
  46. protected:
  47.     //{{AFX_MSG(COptionSheet)
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.